home *** CD-ROM | disk | FTP | other *** search
/ Trading on the Edge / Trading On The Edge - CD-ROM Toolkit (Wayzata Technology)(2031)(1994).bin / pc / mac_file / vendor_d / azte_pro / define.h < prev    next >
Text File  |  1993-06-11  |  3KB  |  119 lines

  1. /* 10/8/89.
  2.  * Definitions for the Double Auction Tournament skeleton program, C version.
  3.  *                         R.G. Palmer, Jan-Apr 1989.
  4.  * 
  5.  * You must customize this file before compiling ANY of the .c files.
  6.  * If you change this file you must recompile ALL the .c files.
  7.  *
  8.  * See the README file for compilation instructions.
  9.  *
  10.  *
  11.  *---------------Machine/compiler type--------------------------------
  12.  * Define ONE of the following to specify your machine/compiler type.
  13.  * If your machine/compiler is not listed, choose the nearest one
  14.  * available and please report problems or the lack thereof to the authors.
  15.  *
  16.  * These six have been tested:
  17.  *      AIX     for AIX 3.x on the RS/6000
  18.  *    SUN4    for Sun OS 4  (approx BSD4.3 Unix)
  19.  *      NEXT    for NeXT machines
  20.  *      CONVEX  for Convex machines running ConvexOS
  21.  *      ULTRIX  for DEC machines running Ultrix
  22.  *    HPUX    for HP machines running HP-UX (Sys V)
  23.  *      MTXINU  for the Mt.Xinu version of UNIX
  24.  *      UVAX43  for MicroVax 4.3BSD
  25.  *      DYNIX   for Sequents running Dynix
  26.  * These may also work:
  27.  *    BSD43    for Unix BSD 4.3
  28.  *    SUN3    for Sun OS 3
  29.  *    CRAY    for Unicos on a Cray 2 etc
  30.  *    IRIS    for Silicon Graphics IRIS with IRIX (approx System V)
  31.  *    UNIX    Miscellaneous Unix
  32.  *    TURBOC    for Turbo C on an IBM PC or compatible
  33.  *    QUICKC  for Quick C on an IBM PC or compatible
  34.  *    MSDOS    Miscellaneous msdos/pcdos
  35.  *    VMS    Vax/VMS
  36.  *    THINKC3    Think's Lightspeed C 3.0.x for a Macintosh
  37.  *    THINKC4    Think's Lightspeed C 4.0 for a Macintosh
  38.  */
  39.  
  40. #define BSD43     1
  41.  
  42. /*
  43.  * DAD host... the host this program will look for to find DAD by default.
  44.  * 
  45.  * Choices:
  46.  *    AZTE_ZIGGY -- ziggy.econ.arizona.edu
  47.  *    AZTE_THOR  -- thor.econ.wisc.edu
  48.  *    AZTE_SFI   -- sfi.santafe.edu
  49.  *
  50.  */
  51.  
  52. #define AZTE_ZIGGY 1
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61. /* Various conversions for specific machines -- you shouldn't need to * 
  62.  * Change any of these.                                               */
  63.  
  64. #ifdef NEXT
  65. #define BSD43 1
  66. #define NO_MALLOC_H 1
  67. #endif
  68.  
  69. #ifdef AIX
  70. #define BSD43 1
  71. #endif
  72.  
  73. #ifdef CONVEX
  74. #define BSD43 1
  75. #define NO_MALLOC_H 1
  76. #endif
  77.  
  78. #ifdef ULTRIX
  79. #define BSD43 1
  80. #endif
  81.  
  82. #ifdef HPUX
  83. #define IRIS 1
  84. #endif
  85.  
  86. #ifdef MTXINU
  87. #define BSD43 1
  88. #define NO_MALLOC_H 1
  89. #endif
  90.  
  91. #ifdef UVAX43
  92. #define BSD43 1
  93. #define NO_MALLOC_H 1
  94. #endif
  95.  
  96. #ifdef DYNIX
  97. #define BSD43 1
  98. #define NO_STDLIB_H 1
  99. #endif
  100.  
  101. #ifdef AZTE_ZIGGY
  102. #define MONITORHOST "ziggy.econ.arizona.edu"
  103. #elif AZTE_THOR
  104. #define MONITORHOST "thor.econ.wisc.edu"
  105. #elif AZTE_SFI
  106. #define MONITORHOST "sfi.santafe.edu"
  107. #else
  108. #define MONITORHOST "ziggy.econ.arizona.edu"
  109. #endif
  110.  
  111. #ifdef AZTE_SFI
  112. #define PORT 15479
  113. #else
  114. #define PORT 15478
  115. #endif
  116.  
  117. /* Do not change anything below this line */
  118. #define MAXDISPLAY    14
  119.